Fix a problem with entry gadgets
authorMatthias Clasen <mclasen@redhat.com>
Thu, 17 Dec 2015 20:16:25 +0000 (15:16 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 17 Dec 2015 20:17:23 +0000 (15:17 -0500)
place_windows is accessing the gadgets allocation, so make sure
to allocate the gadget before calling it.

gtk/gtkentry.c

index 4b86e4104b88138586c586fcf265d3d7902f470f..1a1a379530b6c253e8395c5ce55663bbf963de9e 100644 (file)
@@ -3777,6 +3777,13 @@ gtk_entry_size_allocate (GtkWidget     *widget,
 
   gtk_widget_set_allocation (widget, allocation);
 
+  gtk_css_gadget_allocate (entry->priv->gadget,
+                           allocation,
+                           gtk_widget_get_allocated_baseline (widget),
+                           &clip);
+
+  gtk_widget_set_clip (widget, &clip);
+
   if (gtk_widget_get_realized (widget))
     {
       GtkEntryCompletion *completion;
@@ -3788,13 +3795,6 @@ gtk_entry_size_allocate (GtkWidget     *widget,
       if (completion)
         _gtk_entry_completion_resize_popup (completion);
     }
-
-  gtk_css_gadget_allocate (entry->priv->gadget,
-                           allocation,
-                           gtk_widget_get_allocated_baseline (widget),
-                           &clip);
-
-  gtk_widget_set_clip (widget, &clip);
 }
 
 static void